addData
Type
property
Summary
A method for adding data to the table.
Syntax
set the addData of widget to <List>
Description
Use the addData property to append new data to the end of the PolyGrid widget. If you get the value of addData property it will always return empty.
Examples
-- Adds two new items to the content of the table
local tDataToAdd
put "One" into tDataToAdd[1]["col 1"]
put "Two" into tDataToAdd[2]["col 1"]
set the addData of widget "PolyGrid" to tDataToAdd
Related
property: addDataBefore, addDataAfter, pgData